home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
a_to_d
/
dwsock11
/
error.inc
< prev
next >
Wrap
Text File
|
1996-09-15
|
3KB
|
56 lines
function Error(e : integer) : String;
begin
Case e of
WSAEINTR : Result := 'WSAEINTR';
WSAEBADF : Result := 'WSAEINTR';
WSAEFAULT : Result := 'WSAEFAULT';
WSAEINVAL : Result := 'WSAEINVAL';
WSAEMFILE : Result := 'WSAEMFILE';
WSAEWOULDBLOCK : Result := 'WSAEWOULDBLOCK';
WSAEINPROGRESS : Result := 'WSAEINPROGRESS';
WSAEALREADY : Result := 'WSAEALREADY';
WSAENOTSOCK : Result := 'WSAENOTSOCK';
WSAEDESTADDRREQ : Result := 'WSAEDESTADDRREQ';
WSAEMSGSIZE : Result := 'WSAEMSGSIZE';
WSAEPROTOTYPE : Result := 'WSAEPROTOTYPE';
WSAENOPROTOOPT : Result := 'WSAENOPROTOOPT';
WSAEPROTONOSUPPORT : Result := 'WSAEPROTONOSUPPORT';
WSAESOCKTNOSUPPORT : Result := 'WSAESOCKTNOSUPPORT';
WSAEOPNOTSUPP : Result := 'WSAEOPNOTSUPP';
WSAEPFNOSUPPORT : Result := 'WSAEPFNOSUPPORT';
WSAEAFNOSUPPORT : Result := 'WSAEAFNOSUPPORT';
WSAEADDRINUSE : Result := 'WSAEADDRINUSE';
WSAEADDRNOTAVAIL : Result := 'WSAEADDRNOTAVAIL';
WSAENETDOWN : Result := 'WSAENETDOWN';
WSAENETUNREACH : Result := 'WSAENETUNREACH';
WSAENETRESET : Result := 'WSAENETRESET';
WSAECONNABORTED : Result := 'WSAECONNABORTED';
WSAECONNRESET : Result := 'WSAECONNRESET';
WSAENOBUFS : Result := 'WSAENOBUFS';
WSAEISCONN : Result := 'WSAEISCONN';
WSAENOTCONN : Result := 'WSAENOTCONN';
WSAESHUTDOWN : Result := 'WSAESHUTDOWN';
WSAETOOMANYREFS : Result := 'WSAETOOMANYREFS';
WSAETIMEDOUT : Result := 'WSAETIMEDOUT';
WSAECONNREFUSED : Result := 'WSAECONNREFUSED';
WSAELOOP : Result := 'WSAELOOP';
WSAENAMETOOLONG : Result := 'WSAENAMETOOLONG';
WSAEHOSTDOWN : Result := 'WSAEHOSTDOWN';
WSAEHOSTUNREACH : Result := 'WSAEHOSTUNREACH';
WSAENOTEMPTY : Result := 'WSAENOTEMPTY';
WSAEPROCLIM : Result := 'WSAEPROCLIM';
WSAEUSERS : Result := 'WSAEUSERS';
WSAEDQUOT : Result := 'WSAEDQUOT';
WSAESTALE : Result := 'WSAESTALE';
WSAEREMOTE : Result := 'WSAEREMOTE';
WSASYSNOTREADY : Result := 'WSASYSNOTREADY';
WSAVERNOTSUPPORTED : Result := 'WSAVERNOTSUPPORTED';
WSANOTINITIALISED : Result := 'WSANOTINITIALISED';
WSAHOST_NOT_FOUND : Result := 'WSAHOST_NOT_FOUND';
WSATRY_AGAIN : Result := 'WSATRY_AGAIN';
WSANO_RECOVERY : Result := 'WSANO_RECOVERY';
WSANO_DATA : Result := 'WSANO_DATA';
end;
end;